.call {
    margin-top: 10px;
}

.sub-call {
    margin-bottom: 40px;
}

.flat-input {
    padding-left: 18px;
    width: 100%;
    height: 50px;
    margin-bottom: 0;
}

input,
button {
    padding: 10px 80px 10px 60px;
}

button {
    background-color: green;
    color: white;
}

.scroll-bg {
    background-image: url('/images/light.jpg');
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin-top: 50px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2px;
    background-color: transparent;
    border-radius: 8px;
}

.title-section {
    padding: 20px;
}

.title-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.title-section .sub-call {
    font-size: 1.2rem;
}

.wrap-formrequest {
    margin-top: 20px;
}

.contactform {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.flat-input {
    flex: 1 1 30px;
}

.flat-input input,
.flat-input button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.flat-input button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

.flat-input button:hover {
    background-color: #0056b3;
}

.flat-input button i {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .title-section h1 {
        font-size: 2rem;
    }
    .title-section .sub-call {
        font-size: 1rem;
    }
    .flat-input {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    .title-section h1 {
        font-size: 1.5rem;
    }
    .title-section .sub-call {
        font-size: 0.9rem;
    }
    .flat-input input,
    .flat-input button {
        font-size: 0.9rem;
    }
}